home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / INASM101.ARJ / MTEST.SRC < prev    next >
Text File  |  1992-03-28  |  294b  |  21 lines

  1. ;Macrodemonstration    -   Conditional Defines
  2.  
  3. variab ext
  4. zweite ext
  5.  
  6. addier macro @A,@B,@Ergebnis
  7.         mov ax, @A
  8.     if @B=6 
  9.        mov bx, @b
  10.     else
  11.           mov bx, 2
  12.         endif
  13.         add ax, bx
  14.         mov @ergebnis, AX
  15.     
  16.       endm
  17.  
  18. start:
  19.       addier 10, 6, BX
  20. end
  21.